home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 6177 < prev    next >
Encoding:
Text File  |  1996-08-05  |  1.1 KB  |  50 lines

  1. Path: math.ohio-state.edu!usc!usc!not-for-mail
  2. From: awawda@mirzam.usc.edu (Abu A. Wawda)
  3. Newsgroups: comp.lang.c
  4. Subject: How do I modify a character string that's declared as an array of char?
  5. Date: 22 Feb 1996 16:45:41 -0800
  6. Organization: University of Southern California, Los Angeles, CA
  7. Sender: awawda@mirzam.usc.edu
  8. Distribution: world
  9. Message-ID: <4gj2nl$840@mirzam.usc.edu>
  10. NNTP-Posting-Host: mirzam.usc.edu
  11.  
  12. How do I write a function that can modify a string that was declared
  13. as an array of characters?
  14.  
  15. for example:
  16.  
  17. myfunction(char **s)
  18. {
  19.     // modify string s
  20. }
  21.  
  22. main()
  23. {
  24.    char mydata[50];
  25.  
  26.    strcpy(mydata,"test string");
  27.    myfunction(&mydata);
  28. }
  29.  
  30. this does not seem to work! it works fine if i pass i declare mydata
  31. as a pointer to a character like this (or dynamically allocate the
  32. string using a pointer) and pass the address of the pointer:
  33.  
  34. main()
  35. {
  36.    char *mydata = "test string";
  37.  
  38.    myfunction(&mydata);
  39. }
  40.  
  41. the problem with this is i need to write a function that will modify a
  42. string created with an array of characters. i can't figure out how do
  43. to this. please help. thanks!
  44.  
  45. Abu Wawda
  46. wawda@scf.usc.edu
  47. -- 
  48. This is my signature.
  49. Go away.
  50.